home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / cpp_libs / answrbok / 2_11.lha / 2_11 / makefile < prev   
Makefile  |  1993-08-08  |  295b  |  16 lines

  1. C= CC -I. -I../../CC
  2. ll: 2_11atst 2_11btst
  3.  
  4. _11atst: 2_11atst.c 2_11a.c
  5. $(CC) 2_11atst.c -o 2_11atst
  6.  
  7. _11btst: 2_11btst.c 2_11b.c
  8. $(CC) 2_11btst.c -o 2_11btst
  9.  
  10. est: all 2_11a.cmp 2_11b.cmp
  11. 2_11atst > 2_11a.out
  12. cmp 2_11a.out 2_11a.cmp
  13. 2_11btst > 2_11b.out
  14. cmp 2_11b.out 2_11b.cmp
  15. echo tests done
  16.